home *** CD-ROM | disk | FTP | other *** search
- set sphere(xTranslate) 2
- set sphere(yTranslate) 2
- set sphere(zTranslate) 2
-
- loadControlPanel controls.nib
-
- defineClass: colorCube {x y z} {
-
- Translate 0 0 0
- Color {1 1 1}
- TransformBegin
- Sphere 1 -1 1 360
- Translate 0 $y 0
- Sphere 1 -1 1 360
- TransformEnd
-
- Translate $x 0 0
- Color {1 0 0}
- TransformBegin
- Sphere 1 -1 1 360
- Translate 0 $y 0
- Sphere 1 -1 1 360
- TransformEnd
-
- Translate 0 0 $z
- Color {0 1 0}
- TransformBegin
- Sphere 1 -1 1 360
- Translate 0 $y 0
- Sphere 1 -1 1 360
- TransformEnd
-
- Translate [expr {-1 * $x}] 0 0
- Color {0 0 1}
- TransformBegin
- Sphere 1 -1 1 360
- Translate 0 $y 0
- Sphere 1 -1 1 360
- TransformEnd
- }
-
- startShape aSphere
- animatable: {colorCube $sphere(xTranslate) $sphere(yTranslate) $sphere(zTranslate)}
- endShape
-